-
-
Notifications
You must be signed in to change notification settings - Fork 540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding --name-only
option for dolt diff
#7802
Conversation
Should this be |
Good question; I was wondering the same. My vote is to match git here, too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code changes look good. My only comment is that it seems worth matching Git with --name-only
here instead of changing it to --table-only
. Let me know if you think there's a compelling reason not to match Git though.
--table-only
option for dolt diff
--name-only
option for dolt diff
@coffeegoddd DOLT
|
This PR adds support for
--name-only
option fordolt diff
, which just prints the tables that have changed between the two commits. This mirrorsgit diff --name-only
.fixes: #7797